home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbchat1a / frmlogin.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-30  |  3KB  |  110 lines

  1. VERSION 5.00
  2. Begin VB.Form frmLogin 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Login"
  5.    ClientHeight    =   1890
  6.    ClientLeft      =   2835
  7.    ClientTop       =   3435
  8.    ClientWidth     =   3750
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1116.674
  13.    ScaleMode       =   0  'User
  14.    ScaleWidth      =   3521.047
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.ComboBox Combo1 
  18.       Height          =   315
  19.       Left            =   1290
  20.       TabIndex        =   4
  21.       Text            =   "127.0.0.1"
  22.       Top             =   960
  23.       Width           =   2295
  24.    End
  25.    Begin VB.TextBox txtUserName 
  26.       Height          =   345
  27.       Left            =   1290
  28.       TabIndex        =   1
  29.       Text            =   "guest"
  30.       Top             =   135
  31.       Width           =   2325
  32.    End
  33.    Begin VB.CommandButton cmdOK 
  34.       Caption         =   "OK"
  35.       Default         =   -1  'True
  36.       Height          =   375
  37.       Left            =   495
  38.       TabIndex        =   5
  39.       Top             =   1440
  40.       Width           =   1140
  41.    End
  42.    Begin VB.CommandButton cmdCancel 
  43.       Cancel          =   -1  'True
  44.       Caption         =   "Cancel"
  45.       Height          =   375
  46.       Left            =   2100
  47.       TabIndex        =   6
  48.       Top             =   1440
  49.       Width           =   1140
  50.    End
  51.    Begin VB.TextBox txtnick 
  52.       Height          =   345
  53.       IMEMode         =   3  'DISABLE
  54.       Left            =   1290
  55.       TabIndex        =   3
  56.       Text            =   "g"
  57.       Top             =   525
  58.       Width           =   2325
  59.    End
  60.    Begin VB.Label Label1 
  61.       Caption         =   "Server:"
  62.       Height          =   255
  63.       Left            =   120
  64.       TabIndex        =   7
  65.       Top             =   960
  66.       Width           =   1095
  67.    End
  68.    Begin VB.Label lblLabels 
  69.       Caption         =   "&User Name:"
  70.       Height          =   270
  71.       Index           =   0
  72.       Left            =   105
  73.       TabIndex        =   0
  74.       Top             =   150
  75.       Width           =   1080
  76.    End
  77.    Begin VB.Label lblLabels 
  78.       Caption         =   "Nickname:"
  79.       Height          =   270
  80.       Index           =   1
  81.       Left            =   105
  82.       TabIndex        =   2
  83.       Top             =   540
  84.       Width           =   1080
  85.    End
  86. Attribute VB_Name = "frmLogin"
  87. Attribute VB_GlobalNameSpace = False
  88. Attribute VB_Creatable = False
  89. Attribute VB_PredeclaredId = True
  90. Attribute VB_Exposed = False
  91. Option Explicit
  92. Public LoginSucceeded As Boolean
  93. Private Sub cmdCancel_Click()
  94. Me.Hide
  95. End Sub
  96. Private Sub cmdOK_Click()
  97. On Error GoTo coner
  98. user.Name = txtUserName.Text
  99. user.Nickname = txtnick.Text
  100. user.ip = MDIForm1.sck.LocalIP
  101. server = Combo1.Text
  102. MDIForm1.sck.Connect Combo1.Text, 1000
  103. MDIForm1.Caption = "MOSTAFA VB CHAT (USER " & user.Nickname & ")"
  104. Unload Me
  105. connected = True
  106. Exit Sub
  107. coner:
  108. MsgBox "Connection with the server failed..." & Err.Description
  109. End Sub
  110.